home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / perl5 / LWP / UserAgent.pm < prev   
Text File  |  2008-04-07  |  43KB  |  1,393 lines

  1. package LWP::UserAgent;
  2.  
  3. use strict;
  4. use vars qw(@ISA $VERSION);
  5.  
  6. require LWP::MemberMixin;
  7. @ISA = qw(LWP::MemberMixin);
  8. $VERSION = "5.810";
  9.  
  10. use HTTP::Request ();
  11. use HTTP::Response ();
  12. use HTTP::Date ();
  13.  
  14. use LWP ();
  15. use LWP::Debug ();
  16. use LWP::Protocol ();
  17.  
  18. use Carp ();
  19.  
  20. if ($ENV{PERL_LWP_USE_HTTP_10}) {
  21.     require LWP::Protocol::http10;
  22.     LWP::Protocol::implementor('http', 'LWP::Protocol::http10');
  23.     eval {
  24.         require LWP::Protocol::https10;
  25.         LWP::Protocol::implementor('https', 'LWP::Protocol::https10');
  26.     };
  27. }
  28.  
  29.  
  30.  
  31. sub new
  32. {
  33.     # Check for common user mistake
  34.     Carp::croak("Options to LWP::UserAgent should be key/value pairs, not hash reference") 
  35.         if ref($_[1]) eq 'HASH'; 
  36.  
  37.     my($class, %cnf) = @_;
  38.     LWP::Debug::trace('()');
  39.  
  40.     my $agent = delete $cnf{agent};
  41.     $agent = $class->_agent unless defined $agent;
  42.  
  43.     my $from  = delete $cnf{from};
  44.     my $timeout = delete $cnf{timeout};
  45.     $timeout = 3*60 unless defined $timeout;
  46.     my $use_eval = delete $cnf{use_eval};
  47.     $use_eval = 1 unless defined $use_eval;
  48.     my $parse_head = delete $cnf{parse_head};
  49.     $parse_head = 1 unless defined $parse_head;
  50.     my $max_size = delete $cnf{max_size};
  51.     my $max_redirect = delete $cnf{max_redirect};
  52.     $max_redirect = 7 unless defined $max_redirect;
  53.     my $env_proxy = delete $cnf{env_proxy};
  54.  
  55.     my $cookie_jar = delete $cnf{cookie_jar};
  56.     my $conn_cache = delete $cnf{conn_cache};
  57.     my $keep_alive = delete $cnf{keep_alive};
  58.     
  59.     Carp::croak("Can't mix conn_cache and keep_alive")
  60.       if $conn_cache && $keep_alive;
  61.  
  62.  
  63.     my $protocols_allowed   = delete $cnf{protocols_allowed};
  64.     my $protocols_forbidden = delete $cnf{protocols_forbidden};
  65.     
  66.     my $requests_redirectable = delete $cnf{requests_redirectable};
  67.     $requests_redirectable = ['GET', 'HEAD']
  68.       unless defined $requests_redirectable;
  69.  
  70.     # Actually ""s are just as good as 0's, but for concision we'll just say:
  71.     Carp::croak("protocols_allowed has to be an arrayref or 0, not \"$protocols_allowed\"!")
  72.       if $protocols_allowed and ref($protocols_allowed) ne 'ARRAY';
  73.     Carp::croak("protocols_forbidden has to be an arrayref or 0, not \"$protocols_forbidden\"!")
  74.       if $protocols_forbidden and ref($protocols_forbidden) ne 'ARRAY';
  75.     Carp::croak("requests_redirectable has to be an arrayref or 0, not \"$requests_redirectable\"!")
  76.       if $requests_redirectable and ref($requests_redirectable) ne 'ARRAY';
  77.  
  78.  
  79.     if (%cnf && $^W) {
  80.     Carp::carp("Unrecognized LWP::UserAgent options: @{[sort keys %cnf]}");
  81.     }
  82.  
  83.     my $self = bless {
  84.               from         => $from,
  85.               def_headers  => undef,
  86.               timeout      => $timeout,
  87.               use_eval     => $use_eval,
  88.               parse_head   => $parse_head,
  89.               max_size     => $max_size,
  90.               max_redirect => $max_redirect,
  91.               proxy        => {},
  92.               no_proxy     => [],
  93.                       protocols_allowed     => $protocols_allowed,
  94.                       protocols_forbidden   => $protocols_forbidden,
  95.                       requests_redirectable => $requests_redirectable,
  96.              }, $class;
  97.  
  98.     $self->agent($agent) if $agent;
  99.     $self->cookie_jar($cookie_jar) if $cookie_jar;
  100.     $self->env_proxy if $env_proxy;
  101.  
  102.     $self->protocols_allowed(  $protocols_allowed  ) if $protocols_allowed;
  103.     $self->protocols_forbidden($protocols_forbidden) if $protocols_forbidden;
  104.  
  105.     if ($keep_alive) {
  106.     $conn_cache ||= { total_capacity => $keep_alive };
  107.     }
  108.     $self->conn_cache($conn_cache) if $conn_cache;
  109.  
  110.     return $self;
  111. }
  112.  
  113.  
  114. # private method.  check sanity of given $request
  115. sub _request_sanity_check {
  116.     my($self, $request) = @_;
  117.     # some sanity checking
  118.     if (defined $request) {
  119.     if (ref $request) {
  120.         Carp::croak("You need a request object, not a " . ref($request) . " object")
  121.           if ref($request) eq 'ARRAY' or ref($request) eq 'HASH' or
  122.          !$request->can('method') or !$request->can('uri');
  123.     }
  124.     else {
  125.         Carp::croak("You need a request object, not '$request'");
  126.     }
  127.     }
  128.     else {
  129.         Carp::croak("No request object passed in");
  130.     }
  131. }
  132.  
  133.  
  134. sub send_request
  135. {
  136.     my($self, $request, $arg, $size) = @_;
  137.     $self->_request_sanity_check($request);
  138.  
  139.     my($method, $url) = ($request->method, $request->uri);
  140.  
  141.     local($SIG{__DIE__});  # protect against user defined die handlers
  142.  
  143.     # Check that we have a METHOD and a URL first
  144.     return _new_response($request, &HTTP::Status::RC_BAD_REQUEST, "Method missing")
  145.     unless $method;
  146.     return _new_response($request, &HTTP::Status::RC_BAD_REQUEST, "URL missing")
  147.     unless $url;
  148.     return _new_response($request, &HTTP::Status::RC_BAD_REQUEST, "URL must be absolute")
  149.     unless $url->scheme;
  150.  
  151.     LWP::Debug::trace("$method $url");
  152.  
  153.     # Locate protocol to use
  154.     my $scheme = '';
  155.     my $proxy = $self->_need_proxy($url);
  156.     if (defined $proxy) {
  157.     $scheme = $proxy->scheme;
  158.     }
  159.     else {
  160.     $scheme = $url->scheme;
  161.     }
  162.  
  163.     my $protocol;
  164.  
  165.     {
  166.       # Honor object-specific restrictions by forcing protocol objects
  167.       #  into class LWP::Protocol::nogo.
  168.       my $x;
  169.       if($x       = $self->protocols_allowed) {
  170.         if(grep lc($_) eq $scheme, @$x) {
  171.           LWP::Debug::trace("$scheme URLs are among $self\'s allowed protocols (@$x)");
  172.         }
  173.         else {
  174.           LWP::Debug::trace("$scheme URLs aren't among $self\'s allowed protocols (@$x)");
  175.           require LWP::Protocol::nogo;
  176.           $protocol = LWP::Protocol::nogo->new;
  177.         }
  178.       }
  179.       elsif ($x = $self->protocols_forbidden) {
  180.         if(grep lc($_) eq $scheme, @$x) {
  181.           LWP::Debug::trace("$scheme URLs are among $self\'s forbidden protocols (@$x)");
  182.           require LWP::Protocol::nogo;
  183.           $protocol = LWP::Protocol::nogo->new;
  184.         }
  185.         else {
  186.           LWP::Debug::trace("$scheme URLs aren't among $self\'s forbidden protocols (@$x)");
  187.         }
  188.       }
  189.       # else fall thru and create the protocol object normally
  190.     }
  191.  
  192.     unless($protocol) {
  193.       $protocol = eval { LWP::Protocol::create($scheme, $self) };
  194.       if ($@) {
  195.     $@ =~ s/ at .* line \d+.*//s;  # remove file/line number
  196.     my $response =  _new_response($request, &HTTP::Status::RC_NOT_IMPLEMENTED, $@);
  197.     if ($scheme eq "https") {
  198.         $response->message($response->message . " (Crypt::SSLeay not installed)");
  199.         $response->content_type("text/plain");
  200.         $response->content(<<EOT);
  201. LWP will support https URLs if the Crypt::SSLeay module is installed.
  202. More information at <http://www.linpro.no/lwp/libwww-perl/README.SSL>.
  203. EOT
  204.     }
  205.     return $response;
  206.       }
  207.     }
  208.  
  209.     # Extract fields that will be used below
  210.     my ($timeout, $cookie_jar, $use_eval, $parse_head, $max_size) =
  211.       @{$self}{qw(timeout cookie_jar use_eval parse_head max_size)};
  212.  
  213.     my $response;
  214.     $self->progress("begin");
  215.     if ($use_eval) {
  216.     # we eval, and turn dies into responses below
  217.     eval {
  218.         $response = $protocol->request($request, $proxy,
  219.                        $arg, $size, $timeout);
  220.     };
  221.     if ($@) {
  222.         $@ =~ s/ at .* line \d+.*//s;  # remove file/line number
  223.         $response = _new_response($request,
  224.                       &HTTP::Status::RC_INTERNAL_SERVER_ERROR,
  225.                       $@);
  226.     }
  227.     }
  228.     else {
  229.     $response = $protocol->request($request, $proxy,
  230.                        $arg, $size, $timeout);
  231.     # XXX: Should we die unless $response->is_success ???
  232.     }
  233.  
  234.     $response->request($request);  # record request for reference
  235.     $cookie_jar->extract_cookies($response) if $cookie_jar;
  236.     $response->header("Client-Date" => HTTP::Date::time2str(time));
  237.  
  238.     $self->progress("end", $response);
  239.     return $response;
  240. }
  241.  
  242.  
  243. sub prepare_request
  244. {
  245.     my($self, $request) = @_;
  246.     $self->_request_sanity_check($request);
  247.  
  248.     # Extract fields that will be used below
  249.     my ($agent, $from, $cookie_jar, $max_size, $def_headers) =
  250.       @{$self}{qw(agent from cookie_jar max_size def_headers)};
  251.  
  252.     # Set User-Agent and From headers if they are defined
  253.     $request->init_header('User-Agent' => $agent) if $agent;
  254.     $request->init_header('From' => $from) if $from;
  255.     if (defined $max_size) {
  256.     my $last = $max_size - 1;
  257.     $last = 0 if $last < 0;  # there is no way to actually request no content
  258.     $request->init_header('Range' => "bytes=0-$last");
  259.     }
  260.     $cookie_jar->add_cookie_header($request) if $cookie_jar;
  261.  
  262.     if ($def_headers) {
  263.     for my $h ($def_headers->header_field_names) {
  264.         $request->init_header($h => [$def_headers->header($h)]);
  265.     }
  266.     }
  267.  
  268.     return($request);
  269. }
  270.  
  271.  
  272. sub simple_request
  273. {
  274.     my($self, $request, $arg, $size) = @_;
  275.     $self->_request_sanity_check($request);
  276.     my $new_request = $self->prepare_request($request);
  277.     return($self->send_request($new_request, $arg, $size));
  278. }
  279.  
  280.  
  281. sub request
  282. {
  283.     my($self, $request, $arg, $size, $previous) = @_;
  284.  
  285.     LWP::Debug::trace('()');
  286.  
  287.     my $response = $self->simple_request($request, $arg, $size);
  288.  
  289.     my $code = $response->code;
  290.     $response->previous($previous) if defined $previous;
  291.  
  292.     LWP::Debug::debug('Simple response: ' .
  293.               (HTTP::Status::status_message($code) ||
  294.                "Unknown code $code"));
  295.  
  296.     if ($code == &HTTP::Status::RC_MOVED_PERMANENTLY or
  297.     $code == &HTTP::Status::RC_FOUND or
  298.     $code == &HTTP::Status::RC_SEE_OTHER or
  299.     $code == &HTTP::Status::RC_TEMPORARY_REDIRECT)
  300.     {
  301.     my $referral = $request->clone;
  302.  
  303.     # These headers should never be forwarded
  304.     $referral->remove_header('Host', 'Cookie');
  305.     
  306.     if ($referral->header('Referer') &&
  307.         $request->url->scheme eq 'https' &&
  308.         $referral->url->scheme eq 'http')
  309.     {
  310.         # RFC 2616, section 15.1.3.
  311.         LWP::Debug::trace("https -> http redirect, suppressing Referer");
  312.         $referral->remove_header('Referer');
  313.     }
  314.  
  315.     if ($code == &HTTP::Status::RC_SEE_OTHER ||
  316.         $code == &HTTP::Status::RC_FOUND) 
  317.         {
  318.         my $method = uc($referral->method);
  319.         unless ($method eq "GET" || $method eq "HEAD") {
  320.         $referral->method("GET");
  321.         $referral->content("");
  322.         $referral->remove_content_headers;
  323.         }
  324.     }
  325.  
  326.     # And then we update the URL based on the Location:-header.
  327.     my $referral_uri = $response->header('Location');
  328.     {
  329.         # Some servers erroneously return a relative URL for redirects,
  330.         # so make it absolute if it not already is.
  331.         local $URI::ABS_ALLOW_RELATIVE_SCHEME = 1;
  332.         my $base = $response->base;
  333.         $referral_uri = "" unless defined $referral_uri;
  334.         $referral_uri = $HTTP::URI_CLASS->new($referral_uri, $base)
  335.                     ->abs($base);
  336.     }
  337.     $referral->url($referral_uri);
  338.  
  339.     # Check for loop in the redirects, we only count
  340.     my $count = 0;
  341.     my $r = $response;
  342.     while ($r) {
  343.         if (++$count > $self->{max_redirect}) {
  344.         $response->header("Client-Warning" =>
  345.                   "Redirect loop detected (max_redirect = $self->{max_redirect})");
  346.         return $response;
  347.         }
  348.         $r = $r->previous;
  349.     }
  350.  
  351.     return $response unless $self->redirect_ok($referral, $response);
  352.     return $self->request($referral, $arg, $size, $response);
  353.  
  354.     }
  355.     elsif ($code == &HTTP::Status::RC_UNAUTHORIZED ||
  356.          $code == &HTTP::Status::RC_PROXY_AUTHENTICATION_REQUIRED
  357.         )
  358.     {
  359.     my $proxy = ($code == &HTTP::Status::RC_PROXY_AUTHENTICATION_REQUIRED);
  360.     my $ch_header = $proxy ?  "Proxy-Authenticate" : "WWW-Authenticate";
  361.     my @challenge = $response->header($ch_header);
  362.     unless (@challenge) {
  363.         $response->header("Client-Warning" => 
  364.                   "Missing Authenticate header");
  365.         return $response;
  366.     }
  367.  
  368.     require HTTP::Headers::Util;
  369.     CHALLENGE: for my $challenge (@challenge) {
  370.         $challenge =~ tr/,/;/;  # "," is used to separate auth-params!!
  371.         ($challenge) = HTTP::Headers::Util::split_header_words($challenge);
  372.         my $scheme = lc(shift(@$challenge));
  373.         shift(@$challenge); # no value
  374.         $challenge = { @$challenge };  # make rest into a hash
  375.         for (keys %$challenge) {       # make sure all keys are lower case
  376.         $challenge->{lc $_} = delete $challenge->{$_};
  377.         }
  378.  
  379.         unless ($scheme =~ /^([a-z]+(?:-[a-z]+)*)$/) {
  380.         $response->header("Client-Warning" => 
  381.                   "Bad authentication scheme '$scheme'");
  382.         return $response;
  383.         }
  384.         $scheme = $1;  # untainted now
  385.         my $class = "LWP::Authen::\u$scheme";
  386.         $class =~ s/-/_/g;
  387.  
  388.         no strict 'refs';
  389.         unless (%{"$class\::"}) {
  390.         # try to load it
  391.         eval "require $class";
  392.         if ($@) {
  393.             if ($@ =~ /^Can\'t locate/) {
  394.             $response->header("Client-Warning" =>
  395.                       "Unsupported authentication scheme '$scheme'");
  396.             }
  397.             else {
  398.             $response->header("Client-Warning" => $@);
  399.             }
  400.             next CHALLENGE;
  401.         }
  402.         }
  403.         unless ($class->can("authenticate")) {
  404.         $response->header("Client-Warning" =>
  405.                   "Unsupported authentication scheme '$scheme'");
  406.         next CHALLENGE;
  407.         }
  408.         return $class->authenticate($self, $proxy, $challenge, $response,
  409.                     $request, $arg, $size);
  410.     }
  411.     return $response;
  412.     }
  413.     return $response;
  414. }
  415.  
  416.  
  417. #
  418. # Now the shortcuts...
  419. #
  420. sub get {
  421.     require HTTP::Request::Common;
  422.     my($self, @parameters) = @_;
  423.     my @suff = $self->_process_colonic_headers(\@parameters,1);
  424.     return $self->request( HTTP::Request::Common::GET( @parameters ), @suff );
  425. }
  426.  
  427.  
  428. sub post {
  429.     require HTTP::Request::Common;
  430.     my($self, @parameters) = @_;
  431.     my @suff = $self->_process_colonic_headers(\@parameters, (ref($parameters[1]) ? 2 : 1));
  432.     return $self->request( HTTP::Request::Common::POST( @parameters ), @suff );
  433. }
  434.  
  435.  
  436. sub head {
  437.     require HTTP::Request::Common;
  438.     my($self, @parameters) = @_;
  439.     my @suff = $self->_process_colonic_headers(\@parameters,1);
  440.     return $self->request( HTTP::Request::Common::HEAD( @parameters ), @suff );
  441. }
  442.  
  443.  
  444. sub _process_colonic_headers {
  445.     # Process :content_cb / :content_file / :read_size_hint headers.
  446.     my($self, $args, $start_index) = @_;
  447.  
  448.     my($arg, $size);
  449.     for(my $i = $start_index; $i < @$args; $i += 2) {
  450.     next unless defined $args->[$i];
  451.  
  452.     #printf "Considering %s => %s\n", $args->[$i], $args->[$i + 1];
  453.  
  454.     if($args->[$i] eq ':content_cb') {
  455.         # Some sanity-checking...
  456.         $arg = $args->[$i + 1];
  457.         Carp::croak("A :content_cb value can't be undef") unless defined $arg;
  458.         Carp::croak("A :content_cb value must be a coderef")
  459.         unless ref $arg and UNIVERSAL::isa($arg, 'CODE');
  460.         
  461.     }
  462.     elsif ($args->[$i] eq ':content_file') {
  463.         $arg = $args->[$i + 1];
  464.  
  465.         # Some sanity-checking...
  466.         Carp::croak("A :content_file value can't be undef")
  467.         unless defined $arg;
  468.         Carp::croak("A :content_file value can't be a reference")
  469.         if ref $arg;
  470.         Carp::croak("A :content_file value can't be \"\"")
  471.         unless length $arg;
  472.  
  473.     }
  474.     elsif ($args->[$i] eq ':read_size_hint') {
  475.         $size = $args->[$i + 1];
  476.         # Bother checking it?
  477.  
  478.     }
  479.     else {
  480.         next;
  481.     }
  482.     splice @$args, $i, 2;
  483.     $i -= 2;
  484.     }
  485.  
  486.     # And return a suitable suffix-list for request(REQ,...)
  487.  
  488.     return             unless defined $arg;
  489.     return $arg, $size if     defined $size;
  490.     return $arg;
  491. }
  492.  
  493. sub progress {
  494.     my($self, $status, $response) = @_;
  495.     # subclasses might override this
  496. }
  497.  
  498.  
  499. #
  500. # This whole allow/forbid thing is based on man 1 at's way of doing things.
  501. #
  502. sub is_protocol_supported
  503. {
  504.     my($self, $scheme) = @_;
  505.     if (ref $scheme) {
  506.     # assume we got a reference to an URI object
  507.     $scheme = $scheme->scheme;
  508.     }
  509.     else {
  510.     Carp::croak("Illegal scheme '$scheme' passed to is_protocol_supported")
  511.         if $scheme =~ /\W/;
  512.     $scheme = lc $scheme;
  513.     }
  514.  
  515.     my $x;
  516.     if(ref($self) and $x       = $self->protocols_allowed) {
  517.       return 0 unless grep lc($_) eq $scheme, @$x;
  518.     }
  519.     elsif (ref($self) and $x = $self->protocols_forbidden) {
  520.       return 0 if grep lc($_) eq $scheme, @$x;
  521.     }
  522.  
  523.     local($SIG{__DIE__});  # protect against user defined die handlers
  524.     $x = LWP::Protocol::implementor($scheme);
  525.     return 1 if $x and $x ne 'LWP::Protocol::nogo';
  526.     return 0;
  527. }
  528.  
  529.  
  530. sub protocols_allowed      { shift->_elem('protocols_allowed'    , @_) }
  531. sub protocols_forbidden    { shift->_elem('protocols_forbidden'  , @_) }
  532. sub requests_redirectable  { shift->_elem('requests_redirectable', @_) }
  533.  
  534.  
  535. sub redirect_ok
  536. {
  537.     # RFC 2616, section 10.3.2 and 10.3.3 say:
  538.     #  If the 30[12] status code is received in response to a request other
  539.     #  than GET or HEAD, the user agent MUST NOT automatically redirect the
  540.     #  request unless it can be confirmed by the user, since this might
  541.     #  change the conditions under which the request was issued.
  542.  
  543.     # Note that this routine used to be just:
  544.     #  return 0 if $_[1]->method eq "POST";  return 1;
  545.  
  546.     my($self, $new_request, $response) = @_;
  547.     my $method = $response->request->method;
  548.     return 0 unless grep $_ eq $method,
  549.       @{ $self->requests_redirectable || [] };
  550.     
  551.     if ($new_request->url->scheme eq 'file') {
  552.       $response->header("Client-Warning" =>
  553.             "Can't redirect to a file:// URL!");
  554.       return 0;
  555.     }
  556.     
  557.     # Otherwise it's apparently okay...
  558.     return 1;
  559. }
  560.  
  561.  
  562. sub credentials
  563. {
  564.     my($self, $netloc, $realm, $uid, $pass) = @_;
  565.     @{ $self->{'basic_authentication'}{lc($netloc)}{$realm} } =
  566.     ($uid, $pass);
  567. }
  568.  
  569.  
  570. sub get_basic_credentials
  571. {
  572.     my($self, $realm, $uri, $proxy) = @_;
  573.     return if $proxy;
  574.  
  575.     my $host_port = lc($uri->host_port);
  576.     if (exists $self->{'basic_authentication'}{$host_port}{$realm}) {
  577.     return @{ $self->{'basic_authentication'}{$host_port}{$realm} };
  578.     }
  579.  
  580.     return (undef, undef);
  581. }
  582.  
  583.  
  584. sub agent {
  585.     my $self = shift;
  586.     my $old = $self->{agent};
  587.     if (@_) {
  588.     my $agent = shift;
  589.     $agent .= $self->_agent if $agent && $agent =~ /\s+$/;
  590.     $self->{agent} = $agent;
  591.     }
  592.     $old;
  593. }
  594.  
  595.  
  596. sub _agent       { "libwww-perl/$LWP::VERSION" }
  597.  
  598. sub timeout      { shift->_elem('timeout',      @_); }
  599. sub from         { shift->_elem('from',         @_); }
  600. sub parse_head   { shift->_elem('parse_head',   @_); }
  601. sub max_size     { shift->_elem('max_size',     @_); }
  602. sub max_redirect { shift->_elem('max_redirect', @_); }
  603.  
  604.  
  605. sub cookie_jar {
  606.     my $self = shift;
  607.     my $old = $self->{cookie_jar};
  608.     if (@_) {
  609.     my $jar = shift;
  610.     if (ref($jar) eq "HASH") {
  611.         require HTTP::Cookies;
  612.         $jar = HTTP::Cookies->new(%$jar);
  613.     }
  614.     $self->{cookie_jar} = $jar;
  615.     }
  616.     $old;
  617. }
  618.  
  619. sub default_headers {
  620.     my $self = shift;
  621.     my $old = $self->{def_headers} ||= HTTP::Headers->new;
  622.     if (@_) {
  623.     $self->{def_headers} = shift;
  624.     }
  625.     return $old;
  626. }
  627.  
  628. sub default_header {
  629.     my $self = shift;
  630.     return $self->default_headers->header(@_);
  631. }
  632.  
  633.  
  634. sub conn_cache {
  635.     my $self = shift;
  636.     my $old = $self->{conn_cache};
  637.     if (@_) {
  638.     my $cache = shift;
  639.     if (ref($cache) eq "HASH") {
  640.         require LWP::ConnCache;
  641.         $cache = LWP::ConnCache->new(%$cache);
  642.     }
  643.     $self->{conn_cache} = $cache;
  644.     }
  645.     $old;
  646. }
  647.  
  648.  
  649. # depreciated
  650. sub use_eval   { shift->_elem('use_eval',  @_); }
  651. sub use_alarm
  652. {
  653.     Carp::carp("LWP::UserAgent->use_alarm(BOOL) is a no-op")
  654.     if @_ > 1 && $^W;
  655.     "";
  656. }
  657.  
  658.  
  659. sub clone
  660. {
  661.     my $self = shift;
  662.     my $copy = bless { %$self }, ref $self;  # copy most fields
  663.  
  664.     # elements that are references must be handled in a special way
  665.     $copy->{'proxy'} = { %{$self->{'proxy'}} };
  666.     $copy->{'no_proxy'} = [ @{$self->{'no_proxy'}} ];  # copy array
  667.  
  668.     # remove reference to objects for now
  669.     delete $copy->{cookie_jar};
  670.     delete $copy->{conn_cache};
  671.  
  672.     $copy;
  673. }
  674.  
  675.  
  676. sub mirror
  677. {
  678.     my($self, $url, $file) = @_;
  679.  
  680.     LWP::Debug::trace('()');
  681.     my $request = HTTP::Request->new('GET', $url);
  682.  
  683.     if (-e $file) {
  684.     my($mtime) = (stat($file))[9];
  685.     if($mtime) {
  686.         $request->header('If-Modified-Since' =>
  687.                  HTTP::Date::time2str($mtime));
  688.     }
  689.     }
  690.     my $tmpfile = "$file-$$";
  691.  
  692.     my $response = $self->request($request, $tmpfile);
  693.     if ($response->is_success) {
  694.  
  695.     my $file_length = (stat($tmpfile))[7];
  696.     my($content_length) = $response->header('Content-length');
  697.  
  698.     if (defined $content_length and $file_length < $content_length) {
  699.         unlink($tmpfile);
  700.         die "Transfer truncated: " .
  701.         "only $file_length out of $content_length bytes received\n";
  702.     }
  703.     elsif (defined $content_length and $file_length > $content_length) {
  704.         unlink($tmpfile);
  705.         die "Content-length mismatch: " .
  706.         "expected $content_length bytes, got $file_length\n";
  707.     }
  708.     else {
  709.         # OK
  710.         if (-e $file) {
  711.         # Some dosish systems fail to rename if the target exists
  712.         chmod 0777, $file;
  713.         unlink $file;
  714.         }
  715.         rename($tmpfile, $file) or
  716.         die "Cannot rename '$tmpfile' to '$file': $!\n";
  717.  
  718.         if (my $lm = $response->last_modified) {
  719.         # make sure the file has the same last modification time
  720.         utime $lm, $lm, $file;
  721.         }
  722.     }
  723.     }
  724.     else {
  725.     unlink($tmpfile);
  726.     }
  727.     return $response;
  728. }
  729.  
  730.  
  731. sub proxy
  732. {
  733.     my $self = shift;
  734.     my $key  = shift;
  735.  
  736.     LWP::Debug::trace("$key @_");
  737.  
  738.     return map $self->proxy($_, @_), @$key if ref $key;
  739.  
  740.     my $old = $self->{'proxy'}{$key};
  741.     $self->{'proxy'}{$key} = shift if @_;
  742.     return $old;
  743. }
  744.  
  745.  
  746. sub env_proxy {
  747.     my ($self) = @_;
  748.     my($k,$v);
  749.     while(($k, $v) = each %ENV) {
  750.     if ($ENV{REQUEST_METHOD}) {
  751.         # Need to be careful when called in the CGI environment, as
  752.         # the HTTP_PROXY variable is under control of that other guy.
  753.         next if $k =~ /^HTTP_/;
  754.         $k = "HTTP_PROXY" if $k eq "CGI_HTTP_PROXY";
  755.     }
  756.     $k = lc($k);
  757.     next unless $k =~ /^(.*)_proxy$/;
  758.     $k = $1;
  759.     if ($k eq 'no') {
  760.         $self->no_proxy(split(/\s*,\s*/, $v));
  761.     }
  762.     else {
  763.         $self->proxy($k, $v);
  764.     }
  765.     }
  766. }
  767.  
  768.  
  769. sub no_proxy {
  770.     my($self, @no) = @_;
  771.     if (@no) {
  772.     push(@{ $self->{'no_proxy'} }, @no);
  773.     }
  774.     else {
  775.     $self->{'no_proxy'} = [];
  776.     }
  777. }
  778.  
  779.  
  780. # Private method which returns the URL of the Proxy configured for this
  781. # URL, or undefined if none is configured.
  782. sub _need_proxy
  783. {
  784.     my($self, $url) = @_;
  785.     $url = $HTTP::URI_CLASS->new($url) unless ref $url;
  786.  
  787.     my $scheme = $url->scheme || return;
  788.     if (my $proxy = $self->{'proxy'}{$scheme}) {
  789.     if (@{ $self->{'no_proxy'} }) {
  790.         if (my $host = eval { $url->host }) {
  791.         for my $domain (@{ $self->{'no_proxy'} }) {
  792.             if ($host =~ /\Q$domain\E$/) {
  793.             LWP::Debug::trace("no_proxy configured");
  794.             return;
  795.             }
  796.         }
  797.         }
  798.     }
  799.     LWP::Debug::debug("Proxied to $proxy");
  800.     return $HTTP::URI_CLASS->new($proxy);
  801.     }
  802.     LWP::Debug::debug('Not proxied');
  803.     undef;
  804. }
  805.  
  806.  
  807. sub _new_response {
  808.     my($request, $code, $message) = @_;
  809.     my $response = HTTP::Response->new($code, $message);
  810.     $response->request($request);
  811.     $response->header("Client-Date" => HTTP::Date::time2str(time));
  812.     $response->header("Client-Warning" => "Internal response");
  813.     $response->header("Content-Type" => "text/plain");
  814.     $response->content("$code $message\n");
  815.     return $response;
  816. }
  817.  
  818.  
  819. 1;
  820.  
  821. __END__
  822.  
  823. =head1 NAME
  824.  
  825. LWP::UserAgent - Web user agent class
  826.  
  827. =head1 SYNOPSIS
  828.  
  829.  require LWP::UserAgent;
  830.  
  831.  my $ua = LWP::UserAgent->new;
  832.  $ua->timeout(10);
  833.  $ua->env_proxy;
  834.  
  835.  my $response = $ua->get('http://search.cpan.org/');
  836.  
  837.  if ($response->is_success) {
  838.      print $response->content;  # or whatever
  839.  }
  840.  else {
  841.      die $response->status_line;
  842.  }
  843.  
  844. =head1 DESCRIPTION
  845.  
  846. The C<LWP::UserAgent> is a class implementing a web user agent.
  847. C<LWP::UserAgent> objects can be used to dispatch web requests.
  848.  
  849. In normal use the application creates an C<LWP::UserAgent> object, and
  850. then configures it with values for timeouts, proxies, name, etc. It
  851. then creates an instance of C<HTTP::Request> for the request that
  852. needs to be performed. This request is then passed to one of the
  853. request method the UserAgent, which dispatches it using the relevant
  854. protocol, and returns a C<HTTP::Response> object.  There are
  855. convenience methods for sending the most common request types: get(),
  856. head() and post().  When using these methods then the creation of the
  857. request object is hidden as shown in the synopsis above.
  858.  
  859. The basic approach of the library is to use HTTP style communication
  860. for all protocol schemes.  This means that you will construct
  861. C<HTTP::Request> objects and receive C<HTTP::Response> objects even
  862. for non-HTTP resources like I<gopher> and I<ftp>.  In order to achieve
  863. even more similarity to HTTP style communications, gopher menus and
  864. file directories are converted to HTML documents.
  865.  
  866. =head1 CONSTRUCTOR METHODS
  867.  
  868. The following constructor methods are available:
  869.  
  870. =over 4
  871.  
  872. =item $ua = LWP::UserAgent->new( %options )
  873.  
  874. This method constructs a new C<LWP::UserAgent> object and returns it.
  875. Key/value pair arguments may be provided to set up the initial state.
  876. The following options correspond to attribute methods described below:
  877.  
  878.    KEY                     DEFAULT
  879.    -----------             --------------------
  880.    agent                   "libwww-perl/#.##"
  881.    from                    undef
  882.    conn_cache              undef
  883.    cookie_jar              undef
  884.    default_headers         HTTP::Headers->new
  885.    max_size                undef
  886.    max_redirect            7
  887.    parse_head              1
  888.    protocols_allowed       undef
  889.    protocols_forbidden     undef
  890.    requests_redirectable   ['GET', 'HEAD']
  891.    timeout                 180
  892.  
  893. The following additional options are also accepted: If the
  894. C<env_proxy> option is passed in with a TRUE value, then proxy
  895. settings are read from environment variables (see env_proxy() method
  896. below).  If the C<keep_alive> option is passed in, then a
  897. C<LWP::ConnCache> is set up (see conn_cache() method below).  The
  898. C<keep_alive> value is passed on as the C<total_capacity> for the
  899. connection cache.
  900.  
  901. =item $ua->clone
  902.  
  903. Returns a copy of the LWP::UserAgent object.
  904.  
  905. =back
  906.  
  907. =head1 ATTRIBUTES
  908.  
  909. The settings of the configuration attributes modify the behaviour of the
  910. C<LWP::UserAgent> when it dispatches requests.  Most of these can also
  911. be initialized by options passed to the constructor method.
  912.  
  913. The following attributes methods are provided.  The attribute value is
  914. left unchanged if no argument is given.  The return value from each
  915. method is the old attribute value.
  916.  
  917. =over
  918.  
  919. =item $ua->agent
  920.  
  921. =item $ua->agent( $product_id )
  922.  
  923. Get/set the product token that is used to identify the user agent on
  924. the network.  The agent value is sent as the "User-Agent" header in
  925. the requests.  The default is the string returned by the _agent()
  926. method (see below).
  927.  
  928. If the $product_id ends with space then the _agent() string is
  929. appended to it.
  930.  
  931. The user agent string should be one or more simple product identifiers
  932. with an optional version number separated by the "/" character.
  933. Examples are:
  934.  
  935.   $ua->agent('Checkbot/0.4 ' . $ua->_agent);
  936.   $ua->agent('Checkbot/0.4 ');    # same as above
  937.   $ua->agent('Mozilla/5.0');
  938.   $ua->agent("");                 # don't identify
  939.  
  940. =item $ua->_agent
  941.  
  942. Returns the default agent identifier.  This is a string of the form
  943. "libwww-perl/#.##", where "#.##" is substituted with the version number
  944. of this library.
  945.  
  946. =item $ua->from
  947.  
  948. =item $ua->from( $email_address )
  949.  
  950. Get/set the e-mail address for the human user who controls
  951. the requesting user agent.  The address should be machine-usable, as
  952. defined in RFC 822.  The C<from> value is send as the "From" header in
  953. the requests.  Example:
  954.  
  955.   $ua->from('gaas@cpan.org');
  956.  
  957. The default is to not send a "From" header.  See the default_headers()
  958. method for the more general interface that allow any header to be defaulted.
  959.  
  960. =item $ua->cookie_jar
  961.  
  962. =item $ua->cookie_jar( $cookie_jar_obj )
  963.  
  964. Get/set the cookie jar object to use.  The only requirement is that
  965. the cookie jar object must implement the extract_cookies($request) and
  966. add_cookie_header($response) methods.  These methods will then be
  967. invoked by the user agent as requests are sent and responses are
  968. received.  Normally this will be a C<HTTP::Cookies> object or some
  969. subclass.
  970.  
  971. The default is to have no cookie_jar, i.e. never automatically add
  972. "Cookie" headers to the requests.
  973.  
  974. Shortcut: If a reference to a plain hash is passed in as the
  975. $cookie_jar_object, then it is replaced with an instance of
  976. C<HTTP::Cookies> that is initialized based on the hash.  This form also
  977. automatically loads the C<HTTP::Cookies> module.  It means that:
  978.  
  979.   $ua->cookie_jar({ file => "$ENV{HOME}/.cookies.txt" });
  980.  
  981. is really just a shortcut for:
  982.  
  983.   require HTTP::Cookies;
  984.   $ua->cookie_jar(HTTP::Cookies->new(file => "$ENV{HOME}/.cookies.txt"));
  985.  
  986. =item $ua->default_headers
  987.  
  988. =item $ua->default_headers( $headers_obj )
  989.  
  990. Get/set the headers object that will provide default header values for
  991. any requests sent.  By default this will be an empty C<HTTP::Headers>
  992. object.  Example:
  993.  
  994.   $ua->default_headers->push_header('Accept-Language' => "no, en");
  995.  
  996. =item $ua->default_header( $field )
  997.  
  998. =item $ua->default_header( $field => $value )
  999.  
  1000. This is just a short-cut for $ua->default_headers->header( $field =>
  1001. $value ). Example:
  1002.  
  1003.   $ua->default_header('Accept-Language' => "no, en");
  1004.  
  1005. =item $ua->conn_cache
  1006.  
  1007. =item $ua->conn_cache( $cache_obj )
  1008.  
  1009. Get/set the C<LWP::ConnCache> object to use.  See L<LWP::ConnCache>
  1010. for details.
  1011.  
  1012. =item $ua->credentials( $netloc, $realm, $uname, $pass )
  1013.  
  1014. Set the user name and password to be used for a realm.  It is often more
  1015. useful to specialize the get_basic_credentials() method instead.
  1016.  
  1017. The $netloc a string of the form "<host>:<port>".  The username and
  1018. password will only be passed to this server.  Example:
  1019.  
  1020.   $ua->credenticals("www.example.com:80", "Some Realm", "foo", "secret");
  1021.  
  1022. =item $ua->max_size
  1023.  
  1024. =item $ua->max_size( $bytes )
  1025.  
  1026. Get/set the size limit for response content.  The default is C<undef>,
  1027. which means that there is no limit.  If the returned response content
  1028. is only partial, because the size limit was exceeded, then a
  1029. "Client-Aborted" header will be added to the response.  The content
  1030. might end up longer than C<max_size> as we abort once appending a
  1031. chunk of data makes the length exceed the limit.  The "Content-Length"
  1032. header, if present, will indicate the length of the full content and
  1033. will normally not be the same as C<< length($res->content) >>.
  1034.  
  1035. =item $ua->max_redirect
  1036.  
  1037. =item $ua->max_redirect( $n )
  1038.  
  1039. This reads or sets the object's limit of how many times it will obey
  1040. redirection responses in a given request cycle.
  1041.  
  1042. By default, the value is 7. This means that if you call request()
  1043. method and the response is a redirect elsewhere which is in turn a
  1044. redirect, and so on seven times, then LWP gives up after that seventh
  1045. request.
  1046.  
  1047. =item $ua->parse_head
  1048.  
  1049. =item $ua->parse_head( $boolean )
  1050.  
  1051. Get/set a value indicating whether we should initialize response
  1052. headers from the E<lt>head> section of HTML documents. The default is
  1053. TRUE.  Do not turn this off, unless you know what you are doing.
  1054.  
  1055. =item $ua->protocols_allowed
  1056.  
  1057. =item $ua->protocols_allowed( \@protocols )
  1058.  
  1059. This reads (or sets) this user agent's list of protocols that the
  1060. request methods will exclusively allow.  The protocol names are case
  1061. insensitive.
  1062.  
  1063. For example: C<$ua-E<gt>protocols_allowed( [ 'http', 'https'] );>
  1064. means that this user agent will I<allow only> those protocols,
  1065. and attempts to use this user agent to access URLs with any other
  1066. schemes (like "ftp://...") will result in a 500 error.
  1067.  
  1068. To delete the list, call: C<$ua-E<gt>protocols_allowed(undef)>
  1069.  
  1070. By default, an object has neither a C<protocols_allowed> list, nor a
  1071. C<protocols_forbidden> list.
  1072.  
  1073. Note that having a C<protocols_allowed> list causes any
  1074. C<protocols_forbidden> list to be ignored.
  1075.  
  1076. =item $ua->protocols_forbidden
  1077.  
  1078. =item $ua->protocols_forbidden( \@protocols )
  1079.  
  1080. This reads (or sets) this user agent's list of protocols that the
  1081. request method will I<not> allow. The protocol names are case
  1082. insensitive.
  1083.  
  1084. For example: C<$ua-E<gt>protocols_forbidden( [ 'file', 'mailto'] );>
  1085. means that this user agent will I<not> allow those protocols, and
  1086. attempts to use this user agent to access URLs with those schemes
  1087. will result in a 500 error.
  1088.  
  1089. To delete the list, call: C<$ua-E<gt>protocols_forbidden(undef)>
  1090.  
  1091. =item $ua->requests_redirectable
  1092.  
  1093. =item $ua->requests_redirectable( \@requests )
  1094.  
  1095. This reads or sets the object's list of request names that
  1096. C<$ua-E<gt>redirect_ok(...)> will allow redirection for.  By
  1097. default, this is C<['GET', 'HEAD']>, as per RFC 2616.  To
  1098. change to include 'POST', consider:
  1099.  
  1100.    push @{ $ua->requests_redirectable }, 'POST';
  1101.  
  1102. =item $ua->timeout
  1103.  
  1104. =item $ua->timeout( $secs )
  1105.  
  1106. Get/set the timeout value in seconds. The default timeout() value is
  1107. 180 seconds, i.e. 3 minutes.
  1108.  
  1109. The requests is aborted if no activity on the connection to the server
  1110. is observed for C<timeout> seconds.  This means that the time it takes
  1111. for the complete transaction and the request() method to actually
  1112. return might be longer.
  1113.  
  1114. =back
  1115.  
  1116. =head2 Proxy attributes
  1117.  
  1118. The following methods set up when requests should be passed via a
  1119. proxy server.
  1120.  
  1121. =over
  1122.  
  1123. =item $ua->proxy(\@schemes, $proxy_url)
  1124.  
  1125. =item $ua->proxy($scheme, $proxy_url)
  1126.  
  1127. Set/retrieve proxy URL for a scheme:
  1128.  
  1129.  $ua->proxy(['http', 'ftp'], 'http://proxy.sn.no:8001/');
  1130.  $ua->proxy('gopher', 'http://proxy.sn.no:8001/');
  1131.  
  1132. The first form specifies that the URL is to be used for proxying of
  1133. access methods listed in the list in the first method argument,
  1134. i.e. 'http' and 'ftp'.
  1135.  
  1136. The second form shows a shorthand form for specifying
  1137. proxy URL for a single access scheme.
  1138.  
  1139. =item $ua->no_proxy( $domain, ... )
  1140.  
  1141. Do not proxy requests to the given domains.  Calling no_proxy without
  1142. any domains clears the list of domains. Eg:
  1143.  
  1144.  $ua->no_proxy('localhost', 'no', ...);
  1145.  
  1146. =item $ua->env_proxy
  1147.  
  1148. Load proxy settings from *_proxy environment variables.  You might
  1149. specify proxies like this (sh-syntax):
  1150.  
  1151.   gopher_proxy=http://proxy.my.place/
  1152.   wais_proxy=http://proxy.my.place/
  1153.   no_proxy="localhost,my.domain"
  1154.   export gopher_proxy wais_proxy no_proxy
  1155.  
  1156. csh or tcsh users should use the C<setenv> command to define these
  1157. environment variables.
  1158.  
  1159. On systems with case insensitive environment variables there exists a
  1160. name clash between the CGI environment variables and the C<HTTP_PROXY>
  1161. environment variable normally picked up by env_proxy().  Because of
  1162. this C<HTTP_PROXY> is not honored for CGI scripts.  The
  1163. C<CGI_HTTP_PROXY> environment variable can be used instead.
  1164.  
  1165. =back
  1166.  
  1167. =head1 REQUEST METHODS
  1168.  
  1169. The methods described in this section are used to dispatch requests
  1170. via the user agent.  The following request methods are provided:
  1171.  
  1172. =over
  1173.  
  1174. =item $ua->get( $url )
  1175.  
  1176. =item $ua->get( $url , $field_name => $value, ... )
  1177.  
  1178. This method will dispatch a C<GET> request on the given $url.  Further
  1179. arguments can be given to initialize the headers of the request. These
  1180. are given as separate name/value pairs.  The return value is a
  1181. response object.  See L<HTTP::Response> for a description of the
  1182. interface it provides.
  1183.  
  1184. Fields names that start with ":" are special.  These will not
  1185. initialize headers of the request but will determine how the response
  1186. content is treated.  The following special field names are recognized:
  1187.  
  1188.     :content_file   => $filename
  1189.     :content_cb     => \&callback
  1190.     :read_size_hint => $bytes
  1191.  
  1192. If a $filename is provided with the C<:content_file> option, then the
  1193. response content will be saved here instead of in the response
  1194. object.  If a callback is provided with the C<:content_cb> option then
  1195. this function will be called for each chunk of the response content as
  1196. it is received from the server.  If neither of these options are
  1197. given, then the response content will accumulate in the response
  1198. object itself.  This might not be suitable for very large response
  1199. bodies.  Only one of C<:content_file> or C<:content_cb> can be
  1200. specified.  The content of unsuccessful responses will always
  1201. accumulate in the response object itself, regardless of the
  1202. C<:content_file> or C<:content_cb> options passed in.
  1203.  
  1204. The C<:read_size_hint> option is passed to the protocol module which
  1205. will try to read data from the server in chunks of this size.  A
  1206. smaller value for the C<:read_size_hint> will result in a higher
  1207. number of callback invocations.
  1208.  
  1209. The callback function is called with 3 arguments: a chunk of data, a
  1210. reference to the response object, and a reference to the protocol
  1211. object.  The callback can abort the request by invoking die().  The
  1212. exception message will show up as the "X-Died" header field in the
  1213. response returned by the get() function.
  1214.  
  1215. =item $ua->head( $url )
  1216.  
  1217. =item $ua->head( $url , $field_name => $value, ... )
  1218.  
  1219. This method will dispatch a C<HEAD> request on the given $url.
  1220. Otherwise it works like the get() method described above.
  1221.  
  1222. =item $ua->post( $url, \%form )
  1223.  
  1224. =item $ua->post( $url, \@form )
  1225.  
  1226. =item $ua->post( $url, \%form, $field_name => $value, ... )
  1227.  
  1228. =item $ua->post( $url, $field_name => $value,... Content => \%form )
  1229.  
  1230. =item $ua->post( $url, $field_name => $value,... Content => \@form )
  1231.  
  1232. =item $ua->post( $url, $field_name => $value,... Content => $content )
  1233.  
  1234. This method will dispatch a C<POST> request on the given $url, with
  1235. %form or @form providing the key/value pairs for the fill-in form
  1236. content. Additional headers and content options are the same as for
  1237. the get() method.
  1238.  
  1239. This method will use the POST() function from C<HTTP::Request::Common>
  1240. to build the request.  See L<HTTP::Request::Common> for a details on
  1241. how to pass form content and other advanced features.
  1242.  
  1243. =item $ua->mirror( $url, $filename )
  1244.  
  1245. This method will get the document identified by $url and store it in
  1246. file called $filename.  If the file already exists, then the request
  1247. will contain an "If-Modified-Since" header matching the modification
  1248. time of the file.  If the document on the server has not changed since
  1249. this time, then nothing happens.  If the document has been updated, it
  1250. will be downloaded again.  The modification time of the file will be
  1251. forced to match that of the server.
  1252.  
  1253. The return value is the the response object.
  1254.  
  1255. =item $ua->request( $request )
  1256.  
  1257. =item $ua->request( $request, $content_file )
  1258.  
  1259. =item $ua->request( $request, $content_cb )
  1260.  
  1261. =item $ua->request( $request, $content_cb, $read_size_hint )
  1262.  
  1263. This method will dispatch the given $request object.  Normally this
  1264. will be an instance of the C<HTTP::Request> class, but any object with
  1265. a similar interface will do.  The return value is a response object.
  1266. See L<HTTP::Request> and L<HTTP::Response> for a description of the
  1267. interface provided by these classes.
  1268.  
  1269. The request() method will process redirects and authentication
  1270. responses transparently.  This means that it may actually send several
  1271. simple requests via the simple_request() method described below.
  1272.  
  1273. The request methods described above; get(), head(), post() and
  1274. mirror(), will all dispatch the request they build via this method.
  1275. They are convenience methods that simply hides the creation of the
  1276. request object for you.
  1277.  
  1278. The $content_file, $content_cb and $read_size_hint all correspond to
  1279. options described with the get() method above.
  1280.  
  1281. You are allowed to use a CODE reference as C<content> in the request
  1282. object passed in.  The C<content> function should return the content
  1283. when called.  The content can be returned in chunks.  The content
  1284. function will be invoked repeatedly until it return an empty string to
  1285. signal that there is no more content.
  1286.  
  1287. =item $ua->simple_request( $request )
  1288.  
  1289. =item $ua->simple_request( $request, $content_file )
  1290.  
  1291. =item $ua->simple_request( $request, $content_cb )
  1292.  
  1293. =item $ua->simple_request( $request, $content_cb, $read_size_hint )
  1294.  
  1295. This method dispatches a single request and returns the response
  1296. received.  Arguments are the same as for request() described above.
  1297.  
  1298. The difference from request() is that simple_request() will not try to
  1299. handle redirects or authentication responses.  The request() method
  1300. will in fact invoke this method for each simple request it sends.
  1301.  
  1302. =item $ua->is_protocol_supported( $scheme )
  1303.  
  1304. You can use this method to test whether this user agent object supports the
  1305. specified C<scheme>.  (The C<scheme> might be a string (like 'http' or
  1306. 'ftp') or it might be an URI object reference.)
  1307.  
  1308. Whether a scheme is supported, is determined by the user agent's
  1309. C<protocols_allowed> or C<protocols_forbidden> lists (if any), and by
  1310. the capabilities of LWP.  I.e., this will return TRUE only if LWP
  1311. supports this protocol I<and> it's permitted for this particular
  1312. object.
  1313.  
  1314. =back
  1315.  
  1316. =head2 Callback methods
  1317.  
  1318. The following methods will be invoked as requests are processed. These
  1319. methods are documented here because subclasses of C<LWP::UserAgent>
  1320. might want to override their behaviour.
  1321.  
  1322. =over
  1323.  
  1324. =item $ua->prepare_request( $request )
  1325.  
  1326. This method is invoked by simple_request().  Its task is to modify the
  1327. given $request object by setting up various headers based on the
  1328. attributes of the user agent. The return value should normally be the
  1329. $request object passed in.  If a different request object is returned
  1330. it will be the one actually processed.
  1331.  
  1332. The headers affected by the base implementation are; "User-Agent",
  1333. "From", "Range" and "Cookie".
  1334.  
  1335. =item $ua->redirect_ok( $prospective_request, $response )
  1336.  
  1337. This method is called by request() before it tries to follow a
  1338. redirection to the request in $response.  This should return a TRUE
  1339. value if this redirection is permissible.  The $prospective_request
  1340. will be the request to be sent if this method returns TRUE.
  1341.  
  1342. The base implementation will return FALSE unless the method
  1343. is in the object's C<requests_redirectable> list,
  1344. FALSE if the proposed redirection is to a "file://..."
  1345. URL, and TRUE otherwise.
  1346.  
  1347. =item $ua->get_basic_credentials( $realm, $uri, $isproxy )
  1348.  
  1349. This is called by request() to retrieve credentials for documents
  1350. protected by Basic or Digest Authentication.  The arguments passed in
  1351. is the $realm provided by the server, the $uri requested and a boolean
  1352. flag to indicate if this is authentication against a proxy server.
  1353.  
  1354. The method should return a username and password.  It should return an
  1355. empty list to abort the authentication resolution attempt.  Subclasses
  1356. can override this method to prompt the user for the information. An
  1357. example of this can be found in C<lwp-request> program distributed
  1358. with this library.
  1359.  
  1360. The base implementation simply checks a set of pre-stored member
  1361. variables, set up with the credentials() method.
  1362.  
  1363. =item $ua->progress( $status, $response )
  1364.  
  1365. This is called frequently as the response is received regardless of
  1366. how the content is processed.  The method is called with $status
  1367. "begin" at the start of processing the request and with $state "end"
  1368. before the request method returns.  In between these $status will be
  1369. the fraction of the response currently received or the string "tick"
  1370. if the fraction can't be calculated.
  1371.  
  1372. =back
  1373.  
  1374. =head1 SEE ALSO
  1375.  
  1376. See L<LWP> for a complete overview of libwww-perl5.  See L<lwpcook>
  1377. and the scripts F<lwp-request> and F<lwp-download> for examples of
  1378. usage.
  1379.  
  1380. See L<HTTP::Request> and L<HTTP::Response> for a description of the
  1381. message objects dispatched and received.  See L<HTTP::Request::Common>
  1382. and L<HTML::Form> for other ways to build request objects.
  1383.  
  1384. See L<WWW::Mechanize> and L<WWW::Search> for examples of more
  1385. specialized user agents based on C<LWP::UserAgent>.
  1386.  
  1387. =head1 COPYRIGHT
  1388.  
  1389. Copyright 1995-2008 Gisle Aas.
  1390.  
  1391. This library is free software; you can redistribute it and/or
  1392. modify it under the same terms as Perl itself.
  1393.